From 426460bf356dfa22de816f55af642794220b43f1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 30 May 1993 18:56:45 +0000 Subject: [PATCH] When looking for sources, use '.', not `.`. Also '..'. --- configure1.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure1.in b/configure1.in index 9badb35e10d..1758155efd8 100755 --- a/configure1.in +++ b/configure1.in @@ -304,10 +304,10 @@ case "${srcdir}" in srcdir="${confdir}" else if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then - srcdir=`.` + srcdir='.' else if [ -f "../src/lisp.h" -a -f "../lisp/version.el" ]; then - srcdir=`..` + srcdir='..' else (echo "\ ${progname}: Neither the current directory nor its parent seem to -- 2.30.2